/*@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400&display=swap');*/

/* merriweather-300 - latin */
@font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 300;
    src: url('/public/fonts/merriweather-300.eot'); /* IE9 Compat Modes */
    src: local('Merriweather Light'), local('Merriweather-Light'),
    url('/public/fonts/merriweather-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('/public/fonts/merriweather-300.woff2') format('woff2'), /* Super Modern Browsers */
    url('/public/fonts/merriweather-300.woff') format('woff'), /* Modern Browsers */
    url('/public/fonts/merriweather-300.ttf') format('truetype'), /* Safari, Android, iOS */
    url('/public/fonts/merriweather-300.svg#Merriweather') format('svg'); /* Legacy iOS */
}
/* merriweather-regular - latin */
@font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 400;
    src: url('/public/fonts/merriweather-regular.eot'); /* IE9 Compat Modes */
    src: local('Merriweather Regular'), local('Merriweather-Regular'),
    url('/public/fonts/merriweather-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('/public/fonts/merriweather-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('/public/fonts/merriweather-regular.woff') format('woff'), /* Modern Browsers */
    url('/public/fonts/merriweather-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('/public/fonts/merriweather-regular.svg#Merriweather') format('svg'); /* Legacy iOS */
}

/* BEGIN defaults */
* {
    margin: 0;
    padding: 0;
    font-family: Merriweather, serif;
    -webkit-appearance: none;
    border-radius: 0;
}
img {
    display: inline-block;
    max-width: 100%;
    vertical-align: top;
}

a {
    text-decoration: none;
    color: #000;
}
a:not(.btn):not(.datenschutz_accept):not(.disable_hover):hover {
    color: rgb(37, 182, 218);
}

button {
    border: 0;
    outline: none;
}

h1, .content_headline1 {
    margin-bottom: 5px;

    font-size: 22px;
    font-weight: 500;
}
h2, .content_headline2 {
    font-size: 20px;
    font-weight: 400;
}
h3, .content_headline3 {
    font-size: 18px;
    font-weight: 400;
}

p {
    margin-bottom: 30px;
}

ul {
    padding-left: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 15px;

    vertical-align: top;
    font-size: 16px;
    background-color: rgb(37, 182, 218);
    color: #000;
    border: 0;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color .2s;
}
.btn.btn--uppercase {
    text-transform: uppercase;
}
.btn.btn--right {
    float: right;
}
.btn:hover {
    background-color: #79cbe7;
}

input[type=radio] {
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.radiobtn {
    position: relative;
    display: inline-block;
    height: 14px;
    width: 14px;
    margin-right: 10px;

    border-radius: 50%;
    border: 2px solid rgb(37, 182, 218);
}

input[type=radio] ~ .radiobtn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 9px;
    width: 9px;

    border-radius: 50%;
    background-color: rgb(37, 182, 218);
    transform: translate(-50%, -50%) scale(0);
    transition: transform .1s;
}
input[type=radio]:checked ~ .radiobtn:before {
    transform: translate(-50%, -50%) scale(1);
}

.input__hidden {
    opacity: 0;
    width: 0;
    height: 0;
    /* border: 2px; */
    border-width: 1px;
    border-style: inset;
    border-color: initial;
    border-image: initial;
}

.form__group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
    max-width: 1072px;
}
.form__group:first-of-type {
    margin-top: 12px;
}

.form input[type=text], .form textarea {

}

.form textarea {
    resize: none;
}

.form__item {
    /*padding: 0 20px;*/
    flex-basis: 100%;
    box-sizing: border-box;
}
.form__item:not(:first-child) {
    margin-top: 40px;
}
.form__item.form__item--placeholder {
    margin-top: 0;
}

.form__group[data-cols='1'] .form__item {
    flex-basis: 100% !important;
}

.form__label {
    font-size: 18px;
}
.form__label--radio {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}

.form__input {
    display: block;
    width: 100%;
    /*margin-top: 5px;*/
    padding: 5px 0;

    background: #fff;
    border: none;
    border-bottom: 2px solid #ddd;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: normal;
    color: #3c474d;
    outline: none;
    transition: border-bottom-color .2s;
}
.form__input--select {
    padding: 0;
}
div.form__input {
    border-bottom: none;
}
.form__input:focus {
    border-bottom: 2px solid rgb(37, 182, 218);
}
.form__input--fw {
    width: 100%;
}
.form__input--middle {
    height: 180px;
}

.w_selectbox {
    position: relative;
}

.w_selectbox_list {
    display: inline-block;
    position: absolute;
    width: 100%;
    max-height: 260px;
    padding: 0;

    visibility: hidden;
    opacity: 0;
    background: #fff;
    box-shadow: 0 2px 10px -2px rgba(0,0,0,0.4), 0 0 3px -1px rgba(0,0,0,0.6);
    list-style: none;
    z-index: 4;
    overflow-y: auto;
    transition: opacity .2s, visibility .2s;
}
.w_selectbox_list.show {
    visibility: visible;
    opacity: 1;
}

.w_selectbox_list li, .w_selectbox_selected {
    padding: 10px 20px;

    cursor: pointer;
}
.w_selectbox_list li {
    border-bottom: 1px solid #dedede;
}
.w_selectbox_list li:hover {
    background-color: #E6E6E6;
}

.w_selectbox_selected {
    box-shadow: inset 0 0 2px #605f73;
}
.w_selectbox_selected.required {
    border: 1px solid #d91600;
}

.input_required {
    display: none;
    padding: 5px 20px;

    color: #d91600;
}

.input_required.show {
    display: block;
}

@media only screen and (min-width: 640px) {

    .justify-mobile {
        text-align: left;
    }

    .form__item {
        flex-basis: calc(50% - 10px);
    }

    .form__item:nth-child(1), .form__item:nth-child(2) {
        margin-top: 0;
    }
}

@media only screen and (min-width: 1024px) {

    .form__item {
        flex-basis: calc(33.33% - 10px);
    }

    .form__item:nth-child(1), .form__item:nth-child(2), .form__item:nth-child(3) {
        margin-top: 0;
    }
}

@media only screen and (min-width: 1024px) {

    .form__input--middle {
        height: 260px;
    }
}


@media only screen and (min-width: 640px) {

    .flex__grid a {
        width: 33.333%;
    }
}
/* END defaults */

html {
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(166,218,239,1) 15%, rgba(166,218,239,1) 85%, rgba(255,255,255,1) 100%);
}

body {
    overflow-x: hidden;
}

.layer_content {
    display: flex;
    min-height: 100vh;
    padding-top: 108px;

    flex-direction: column;
    box-sizing: border-box;
}
@media (min-width: 768px) {
    .layer_content {
        padding-top: 147px;
    }
}
@media (min-width: 1024px) {
    .layer_content {
        padding-top: 149px;
    }
}
@media (min-width: 1200px) {
    .layer_content {
        padding-top: 195px;
    }
}


header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 20px;

    background-color: #fff;
    box-shadow: 0 0 5px #4f5d67;
    z-index: 1;
}

main {

}

.datenschutz_form_hint .title {
    font-size: 13px;
    font-weight: bold;
}
.datenschutz_form_hint .text {
    font-size: 13px;
}
.datenschutz_form_hint .opt_in {
    font-weight: bold;
    margin-top: 5px;
}
.datenschutz_form_hint label {
    font-size: 13px;
    font-weight: bold;
}

.datenschutz_popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 26px;
    z-index: 4;
    background: #fff;
    /*box-shadow: 0 -5px 5px -5px #333;*/
    box-shadow: 0 0 5px #000;
}
.datenschutz_content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;

    flex-direction: column;
    align-items: center;
}
.datenschutz_accept {
    margin-top: 10px;
    margin-left: 20px;
    padding: 7px;
    background: rgb(37, 182, 218);
    color: #000;
    cursor: pointer;
    white-space: nowrap;
}

@media screen
    and (min-width: 768px) {

    .datenschutz_content {
        flex-direction: row;
    }

    .datenschutz_accept {
        margin-top: 0;
    }
}


/* BEGIN c_head */
.c_head {
    padding: 30px 0 20px 0;

    text-align: center;
}
.c_head > a {
    display: inline-block;
}
.c_head h1 {
    font-weight: 600;
}
.c_head h2 {
    font-size: 20px;
    font-weight: 400;
}


@media screen and (min-width: 1200px) {

    .c_head {
        padding: 40px 0;
    }
    .c_head h1 {
        font-weight: 600;
        font-size: 32px;
    }
    .c_head h2 {
        font-weight: 400;
    }
}
/* END c_head */

/* BEGIN c_main_navi */
.c_main_navi .toggle {
    position: relative;
    display: inline-block;
    padding: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 1;
}
.c_main_navi .toggle .container {
    height: 25px;
    overflow: hidden;
}
.c_main_navi .toggle .container .inner {
    transition: transform 0.3s;
    -webkit-transition: transform 0.3s;
}
.c_main_navi.show .toggle .container .inner {
    transform: translateY(-25px);
    -webkit-transform: translateY(-25px);
}
.c_main_navi .toggle .container .inner .close {
    border-top: 3px solid #000;
}
.c_main_navi .overlay.show {
    visibility: visible;
    opacity: 1;
    width: 100%;
    height: 100%;
    background-color: #A6DAEF;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}
.c_main_navi .navi_wrapper {
    padding: 0 10px;
}
.c_main_navi .navi_1 > .item {
    padding: 5px 0;
}
.c_main_navi .navi_1 > .item > a {
    display: inline-block;
    padding: 5px 10px;

    color: #000;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
}
.c_main_navi .navi_1 > .item > a > .text {
    display: inline-block;
}

@media screen and (max-width: 767px) {

    .c_main_navi {
        position: fixed;
        top: 10px;
        left: 10px;
        display: flex;
        max-width: 1200px;
        margin: 0 auto;
        justify-content: space-between;
    }
    .c_main_navi .overlay {
        position: fixed;
        display: flex;
        display: -webkit-flex;
        flex-direction: column;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        padding-top: 90px;
        visibility: hidden;
        opacity: 0;
        box-sizing: border-box;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
    }
    .c_main_navi .overlay .scrollable {
        margin-bottom: 20px;
        flex: 1;
        overflow: auto;
        overscroll-behavior: contain;
    }
    .c_main_navi .navi_1 > .item.active > a {
        color: #fff;
    }
}

@media screen and (min-width: 768px) {

    .c_main_navi {
        position: relative;
    }
    .c_main_navi .toggle {
        display: none;
    }
    .c_main_navi .navi_1 {
        display: flex;
        max-width: 1220px;
        margin: 0 auto;
        justify-content: space-between;
    }
    .c_main_navi .navi_1 > .item {
        padding: 0;
    }
    .c_main_navi .navi_1 > .item > a {
        padding-bottom: 8px;

        font-size: 18px;
        line-height: 22px;
        cursor: pointer;
        border-bottom: 4px solid transparent;
        transition: color .2s, border-bottom-color .2s;
    }
    .c_main_navi .navi_1 > .item:hover > a {
        color: #0090ab;
    }
    .c_main_navi .navi_1 > .item.active > a {
        border-bottom-color: #0090ab;
    }
}

@media screen and (min-width: 1024px) {

    .c_main_navi .navi_1 > .item > a {
        font-size: 20px;
        line-height: 24px;
    }
}

@media screen and (min-width: 1200px) {

    .c_main_navi .navi_1 > .item > a {
        font-size: 24px;
        line-height: 28px;
    }
}
/* END c_main_navi */

/* BEGIN c_content */
.c_content {
    flex-grow: 1;

    font-size: 15px;
}

@media screen and (min-width: 1200px) {

    .c_content {
        font-size: 16px;
    }
}
/* END c_content */

/* BEGIN c_footer_navi */
.c_footer_navi {
    padding: 20px;
}
.c_footer_navi .navi_1 {
    /*display: flex;*/
    text-align: center;
}
.c_footer_navi .item {
    display: inline-block;
}
.c_footer_navi .item > a {
    padding: 5px 10px;

    color: #000;
    text-decoration: none;
}
/* END c_footer_navi */

/* BEGIN c_show_comments */
.c_show_comments .comments_headline {

}
.c_show_comments .comments {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.c_show_comments .comment {
    flex-basis: 100%;
}
.c_show_comments .comment:not(:first-child) {
    margin-top: 20px;
}
.c_show_comments .comment_text.max_height {
    max-height: 200px;
    overflow: hidden;
}
.c_show_comments .comment_toggle_text {
    display: inline-block;
    margin-top: 6px;

    color: #0090ab;
    cursor: pointer;
}
.c_show_comments .comment_toggle_text:hover {
    text-decoration: underline;
}

@media screen and (min-width: 768px) {

    .c_show_comments .comment {
        flex-basis: calc(50% - 15px);
    }
    .c_show_comments .comment:nth-child(2) {
        margin-top: 0;
    }
}

@media screen and (min-width: 1200px) {

    .c_show_comments .comment {
        flex-basis: calc(33.3333% - 15px);
    }
    .c_show_comments .comment:nth-child(3) {
        margin-top: 0;
    }
}
/* END c_show_comments */

/* BEGIN c_new_comment */
.c_new_comment .title_write_comment {
    display: block;
    /*font-size: 24px;
    line-height: 26px;*/
}
.c_new_comment #textarea_new_comment {
    width: 100%;
    height: 140px;
    max-height: 500px;
    padding: 10px;

    vertical-align: top;
    resize: vertical;
    border: 0;
    outline: none;
    box-sizing: border-box;
}
.c_new_comment .textarea_wrapper {
    position: relative;
    margin-top: 7px;
}
.c_new_comment .textarea_wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    box-shadow: inset 0 0 2px 1px rgba(85,85,85,1);
    opacity: 0;
    visibility: hidden;
    transition: visibility .2s, opacity .2s;
}
.c_new_comment .textarea_wrapper.focus:before {
    visibility: visible;
    opacity: 1;
}
.c_new_comment .btn_submit_comment {
    display: block;
    margin-left: auto;
    margin-top: 15px;
    padding: 10px 15px;

    font-size: 16px;
    background-color: rgb(37, 182, 218);
    color: #000;
    border: 0;
    outline: none;
    cursor: pointer;
    transition: background-color .2s;
}
.c_new_comment .btn_submit_comment:hover {
    background-color: #79cbe7;
}
/* END c_new_comment */

/* BEGIN c_socialmedia_links */
.c_socialmedia_links {
    position: absolute;
    top: 10px;
    right: 10px;
}
.c_socialmedia_links .socialmedia_link {
    display:inline-block;
    vertical-align: top;
}
.c_socialmedia_links .socialmedia_link:not(:first-child) {
    margin-left: 8px;
}
.c_socialmedia_links .socialmedia_icon {
    width: 40px;
}

@media screen and (min-width: 500px) {

    .c_socialmedia_links {
        top: 20px;
        right: 20px;
    }
}

@media screen and (min-width: 1200px) {

    .c_socialmedia_links {
        top: 40px;
        right: 30px;
    }
}

@media screen and (min-width: 1500px) {

    .c_socialmedia_links {
        top: 50%;
        display: flex;

        flex-direction: column;
        transform: translateY(-50%);
    }

    .c_socialmedia_links .socialmedia_link:not(:first-child) {
        margin-left: 0;
        margin-top: 10px;
    }
}
/* END c_socialmedia_links */

/* BEGIN c_shop */
.c_shop .orderStepNavi {
    display: flex;
    padding: 0;
    flex-direction: column;
    list-style: none;

    border: 1px solid #2b2a38;
}
.c_shop .orderStepNavi li:not(:first-child) {
    border-top: 1px solid #605f73;
}
.c_shop .orderStepNavi li a {
    display: block;
    padding: 10px 14px;

    transition: background-color .1s;
}
.c_shop .orderStepNavi li.disabled a {
    color: rgba(96, 95, 115, 0.35);
    cursor: default;
}
.c_shop .orderStepNavi li.active a {
    background-color: #e8e8e8;
}
.c_shop .orderStepNavi li:not(.active):not(.disabled):hover a {
    background-color: rgba(96, 95, 115, 0.35);
}


.c_shop .basket__quantityChanger {
    /*width: 140px;*/
    display: flex;
    align-items: center;
}

.c_shop .quantityChanger__changeQuantity,
.c_shop .quantityChanger__quantity {
    /*width: 40px;
    height: 40px;*/
    padding: 15px;

    /*flex: 1;*/
    font-weight: 500;
    text-align: center;
    box-sizing: border-box;
}
.c_shop .quantityChanger__quantity {
    width: auto;
    padding: 15px 14px;
    /*min-width: 40px;*/
    word-break: keep-all;
}

.c_shop .quantityChanger__changeQuantity {
    position: relative;
    display: block;

    /*background-color: #2b2a38;*/
    background-color: #e8e8e8;
    color: #fff;
    cursor: pointer;
    transition: background-color .2s;
}
.c_shop .quantityChanger__changeQuantity:hover {
    background-color: rgb(37, 182, 218);
}
.c_shop .quantityChanger__changeQuantity.decrease:before,
.c_shop .quantityChanger__changeQuantity.increase:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25%;
    height: 2px;
    margin-top: -1px;

    transform: translateX(-50%);
    background-color: #2b2a38;
}
.c_shop .quantityChanger__changeQuantity.increase:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 25%;
    margin-left: -1px;

    transform: translateY(-50%);
    background-color: #fff;
}

.c_shop .basket__plus:before, .basket__cross:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25%;
    height: 2px;
    margin-top: -1px;

    transform: translateX(-50%);
    background-color: #2b2a38;
}
.c_shop .basket__plus:after, .basket__cross:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 25%;
    margin-left: -1px;

    transform: translateY(-50%);
    background-color: #2b2a38;
}
.c_shop .basket__cross:before {
    transform: translateX(-50%) rotateZ(45deg);
}
.c_shop .basket__cross:after {
    transform: translateY(-50%) rotateZ(45deg);
}
.c_shop .basket__plus:hover:before,
.c_shop .basket__plus:hover:after,
.c_shop .basket__cross:hover:before,
.c_shop .basket__cross:hover:after,
.c_shop .quantityChanger__changeQuantity.decrease:hover:before {
    background-color: #e8e8e8;
}


.c_shop .basket__removePosition {
    position: relative;
    display: block;
    height: 14px;
    width: 14px;
    margin-left: 30px;
    padding: 5px;
    align-self: center;

    background-color: #605f73;
}
.c_shop .basket__removePosition:before {
    content: '';
    position: absolute;
    left: 11px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: #fff;
    transform: rotateZ(45deg);
}
.c_shop .basket__removePosition:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 11px;
    right: 5px;
    height: 2px;
    background: #fff;
    transform: rotateZ(45deg);
}

.c_shop .position__actionBtn {
    position: relative;
    display: inline-flex;
    width: 32px;
    height: 32px;
    padding: 10px;

    background-color: #e8e8e8;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color .2s;
}
.c_shop .position__actionBtn:hover {
    background-color: rgb(37, 182, 218);
}

.c_shop .basket__code {
    display: flex;
    float: right;
}

.c_shop .code__input {
    padding: 5px 10px;
    max-width: 150px;

    outline: none;
    border: 1px solid #605f73;
    font-size: 16px;
}
.c_shop .code__input:focus {
    box-shadow: inset 0 0 2px #605f73;
}
.c_shop .code__submit {
    /*padding: 8px 15px;*/
    padding: 6px 9px;

    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    border: 2px solid transparent;
    background-color: #e8e8e8;
    cursor: pointer;
    transition: background-color .2s;
}
.c_shop .code__submit:hover {
    background-color: rgb(37, 182, 218);
}


.c_shop .orderPosition__pic {
    max-width: 120px;
    max-height: 70px;
    margin-right: 10px;
}
.c_shop .orderPosition__description {
    display: block;
    margin-top: 10px;

    font-size: 14px;
}

.c_shop .orderPosition {
    display: flex;
    flex-wrap: wrap;
}
.c_shop .orderPosition--header {
    display: none;
    /*background-color: #605f73;
    color: #fff;*/
    font-weight: 400;
}
.c_shop .position {
    padding: 15px;
    box-sizing: border-box;
    /*background-color: #ccc;*/
    /*border: 1px solid #000;*/
}
.c_shop .orderPosition:not(:last-child) {
    border-bottom: 1px solid #605f73;
}

.c_shop .position__description {
    display: flex;
    padding-left: 0;
    flex-basis: 75%;
    order: 1;
}
.c_shop .position__quantity {
    flex-basis: 130px;
    order: 3;
    padding-left: 0;
}
.c_shop .position__price {
    flex-basis: calc(100% - 130px);
    order: 4;
    text-align: right;
}
.c_shop .position__delete {
    flex-basis: 25%;
    order: 2;
    text-align: right;
}

.c_shop .position__price .discount {
    margin-top: 5px;
    color: #007d1e;
}

.c_shop .position__price .oldprice {
    position: relative;
    display: inline-block;

    color: #d91600;
}
.c_shop .position__price .oldprice:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;

    background-color: #d91600;
    transform: rotateZ(-15deg) translateY(-50%);
}

.c_shop .checkoutPriceSummary {
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    max-width: 450px;
    min-width: 100%;
    padding: 15px;

    box-sizing: border-box;
    background-color: #e8e8e8;
}
.c_shop .checkoutPriceSummary__name {
    padding: 10px;
    flex-basis: 50%;

    box-sizing: border-box;
    font-weight: 500;
    /*background-color: #605f73;*/
}
.c_shop .checkoutPriceSummary__price {
    padding: 10px;
    flex-basis: 50%;

    box-sizing: border-box;
    font-weight: 500;
    /*background-color: #2b2a38;*/
    text-align: right;
}
.c_shop .checkoutPriceSummary .discount {
    color: #007d1e;
}
.c_shop .checkoutPriceSummary .sum {
    font-weight: 600;
}

.c_shop .userFeedback .message {
    margin-bottom: 20px;
    padding: 15px;

    font-weight: 500;
}

.c_shop .userFeedback .message.error {
    background-color: #fbe7e5;
    color: #d91600;
}

.c_shop .userFeedback .message.success {
    background-color: #eaf5ea;
    color: #007d1e;
}


@media only screen and (min-width: 640px) {

    .c_shop .basket__position--header {
        display: flex;
    }
}

@media only screen and (min-width: 768px) {

    .c_shop .orderStepNavi {
        flex-direction: row;
    }

    .c_shop .orderStepNavi li {
        flex-basis: 33.33%;
        border-top-width: 0 !important;
    }

    .c_shop .orderPosition--header {
        display: flex;
    }

    .c_shop .position__description {
        order: 1;
        flex-basis: 50%;
    }
    .c_shop .position__quantity {
        order: 2;
        flex-basis: 18%;
        padding: 15px;
    }
    .c_shop .position__price {
        order: 3;
        flex-basis: 18%;
    }
    .c_shop .position__delete {
        order: 4;
        flex-basis: 14%;
    }

    .c_shop .checkoutPriceSummary {
        min-width: 350px;
    }
}

@media only screen and (min-width: 1024px) {

    .c_shop .position__quantity {
        flex-basis: 130px;
    }
    .c_shop .position__price {
        flex-basis: calc(50% - 230px);
    }
    .c_shop .position__delete {
        flex-basis: 100px;
    }
}

@media only screen and (min-width: 1400px) {

    .c_shop .position__quantity {
        flex-basis: 16.66%;
    }
    .c_shop .position__price {
        flex-basis: 16.66%;
    }
    .c_shop .position__delete {
        flex-basis: 16.66%;
    }
}
/* END c_shop */

/* BEGIN templates */
section:not(:last-child) .template {
    padding-bottom: 40px;
}
section:not(:first-child) .template {
    padding-top: 40px;
}
section:last-child .template {
    padding-bottom: 200px;
}

@media screen and (min-width: 1200px) {

    section:not(:last-child) .template {
        padding-bottom: 50px;
    }
    section:not(:first-child) .template {
        padding-top: 50px;
    }

    section:first-child .template {
        padding-top: 40px;
    }
}

.template {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;

    overflow: hidden;
}
.template_1 .col:not(:first-child) {
    margin-top: 20px;
}

.template_2 .col:not(:first-child) {
    margin-top: 20px;
}

.template_3 .template_cols {
    max-width: 930px;
    margin: 0 auto;

    text-align: center;
}
.template_3 .col2 {
    margin-top: 20px;
}
.template_3 .col2 img {
    max-width: 300px;
}

.template_4 {

}

.template_5 .col2 {
    margin-top: 40px;
}

@media screen and (min-width: 768px) {

    .template_1 .template_cols {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .template_1 .col {
        margin-top: 0 !important;
        flex-basis: calc(50% - 15px);
    }
    .template_1 .col:nth-child(3) {
        margin-top: 20px !important;
        flex-basis: 100%;
    }

    .template_2 .template_cols {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .template_2 .content_headline1 {
        margin-left: calc(50% + 15px);
    }
    .template_2 .col {
        margin-top: 0 !important;
        flex-basis: calc(50% - 15px);
    }
    .template_2 .col:nth-child(3) {
        margin-top: 20px !important;
        flex-basis: 100%;
    }

    .template_5 .template_cols {
        display: flex;
        justify-content: space-between;
    }
    .template_5 .col {
        flex-basis: calc(50% - 15px);
    }
    .template_5 .col2 {
        margin-top: 0;
    }
}

@media screen and (min-width: 1200px) {

    .template_1 .col {
        margin-top: 0 !important;
        flex-basis: calc(33.3333% - 15px) !important;
    }
    .template_1 .col:nth-child(3) {
        margin-top: 0 !important;
    }

    .template_2 .content_headline1 {
        margin-left: calc(33.3333% + 7.5px);
    }
    .template_2 .col {
        margin-top: 0 !important;
        flex-basis: calc(33.3333% - 15px) !important;
    }
    .template_2 .col:nth-child(3) {
        margin-top: 0 !important;
    }
}
/* END templates */
